home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / qbfe10.arc / README.1ST < prev    next >
Text File  |  1987-11-27  |  3KB  |  78 lines

  1.  
  2. Thanks for taking the time to evaluate EditField.  In case you are new to
  3. the QB4 environment, this document will, hopefully, get you started using
  4. the EditField routine.
  5.  
  6. All of the documention needed to use the routine is in the EDITTEST.BAS file.
  7. The EDITFLD.BAS and STATLINE.BAS files are heavily commented to help others
  8. follow how my mind works (Good Luck!).
  9.  
  10.  
  11. First, be sure the following files are on the current drive (floppy systems)
  12. or in the current subdirectory (hard disk systems):
  13.  
  14.                 EDITFLD.BAS
  15.                 STATLINE.BAS
  16.                 EDITTEST.BAS
  17.                 KBD.OBJ        (From the ADVBAS Library)
  18.                 XQPRINT.OBJ    (From the ADVBAS Library)
  19.                 CALCATTR.OBJ   (From the ADVBAS Library)
  20.  
  21.  
  22. Next, be sure that BC, LIB, and LINK are in the current DOS PATH.  Now,
  23. type in the following commands:
  24.  
  25.       BC EDITFLD; (ENTER)  'Compiles EditField into an .OBJ file
  26.       BC STATLINE; (ENTER) 'Compiles StatLine into an .OBJ file
  27.       LIB EDIT (ENTER)     'Now, put the above .OBJ files into a .LIB
  28.       (You should be prompted that this library does not exist.  You will
  29.        then be asked if you would like to create it.  Answer: Y)
  30.  
  31. At the "Operations" prompt, type:
  32.        +XQPRINT.obj +KBD.OBJ +CALCATTR.OBJ +EDITFLD.OBJ +STATLINE.OBJ (ENTER)
  33.  
  34. At the "List File" prompt, press (ENTER).
  35.  
  36.  
  37. Now you have a .LIB format library containing all of the necessary routines
  38. to run EDITTEST.BAS. All that is left is to create a QuickLibrary so that
  39. you may run the test-bed program from within the QB4 environment.
  40.  
  41. At the DOS prompt type:
  42.  
  43.         link edit.lib,,,bqlb40.lib/q (ENTER)
  44.  
  45. Now, all you have to do is type "QB EDITTEST /L EDIT" and this will bring
  46. the test-bed program up in the environment.
  47.  
  48. An alternative procedure, would be to simply include KBD.OBJ and XQPRINT.OBJ
  49. in the EDIT.LIB and EDIT.QLB.  Then type "QB EDITTEST /L EDIT"
  50. Once in the environment, you can then "Load" EDITFLD.BAS and STATLINE.BAS
  51. and be able to look through the source code for all three of the basic
  52. modules.
  53.  
  54. The detail in this document assumes that you already have experience building
  55. and maintaining .LIB & .QLB libraries.  If you have any problem getting the
  56. routines up and running, you are welcome to give Programmer's Information
  57. Exchange BBS a call at (404) 928-0033.  Join the QuickBASIC conference (#1)
  58. and leave a comment to the Sysop describing your problem in as much detail
  59. as possible.
  60.  
  61. Please remember, you MAY NOT distribute modified versions of the code
  62. in this package.  If you have a bug-fix or you have made an enhancement,
  63. upload it to P.I.E. BBS as a private file.  Include a seperate documentation
  64. file describing your changes.  On the next release, you will be credited in
  65. the EditField documentation and the HISTORY file with the change.
  66.  
  67. I have put allot of time into this routine.  Please do not make me regret
  68. distributing the source by violating the conditions of release.
  69.  
  70. Please feel free to make any comments or suggestions!
  71.  
  72.                           Tony Elliott
  73.                             SysOp of
  74.                   Programmer's Information Exchange
  75.                          (404) 928-0033
  76.                              PCPable
  77.  
  78.